home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / minix / includ~1.z / includ~1 / utmp.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-12-02  |  285 b   |  16 lines

  1. /* The <utmp.h> header is used by login(1), init, and who(1)  */
  2.  
  3. #ifndef _UTMP_H
  4. #define _UTMP_H
  5.  
  6. #define WTMP  "/usr/adm/wtmp"
  7.  
  8. struct  utmp
  9. {
  10.   char ut_line[8];        /* terminal name */
  11.   char ut_name[8];        /* user name */
  12.   long ut_time;            /* login/out time */
  13. };
  14.  
  15. #endif /* _UTMP_H */
  16.